Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632702 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/161 - Personal Assistant

style.css cody/swapnilsparsh/30DaysOfJavaScript/161 - Personal Assistant/style.css
97 Views
0 Comments
/* Felix */
.personal-assistant {
position: relative;
margin-top: 100px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
index.html cody/swapnilsparsh/30DaysOfJavaScript/161 - Personal Assistant/index.html
281 Views
0 Comments
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />
<title>Personal Assistant</title>
<link rel='stylesheet' href='https://pro.fontawesome.com/releases/v5.5.0/css/all.css'>
<link rel='stylesheet' href='https://assets.codepen.io/2940219/tacosontitan-1.1.css'>
script.js cody/swapnilsparsh/30DaysOfJavaScript/161 - Personal Assistant/script.js
159 Views
0 Comments
// Constants
const ACTIVE_TIME_MS = 5000;
const DEACTIVATION_TIME_MS = 750;

// Variables
var felix = document.getElementById("felix");
var responseFrame = document.getElementById("response-frame");
var responseMessage = document.getElementById("response-message");